home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Franz PD / Franz PD Disk #067 (1990-04)(Amiga User Group Deutschland e.V.).zip / Franz PD Disk #067 (1990-04)(Amiga User Group Deutschland e.V.).adf / Include / ConsoleIO.i < prev    next >
Text File  |  1989-07-02  |  823b  |  31 lines

  1. {
  2.     ConsoleIO.i
  3.  
  4.     This file implements all the normal console.device stuff for
  5. dealing with windows.  The first set of routines is standard Amiga stuff,
  6. culled from the ROM Kernel Manual.  The last few routines partially mimic
  7. similar routines from Turbo Pascal.  See ConsoleTest.p for an example of
  8. using these routines.
  9. }
  10.  
  11.  
  12. {$I "Include/Exec.i"}
  13. {$I "Include/Ports.i"}
  14. {$I "Include/ExecIO.i"}
  15.  
  16. Procedure ConPutChar(Request : IOStdReqPtr; Character : Char);
  17.     External;
  18.  
  19. Procedure ConWrite(Request : IOStdReqPtr; Str : String; length : Integer);
  20.     External;
  21.  
  22. Procedure ConPutStr(Request : IOStdReqPtr; Str : String);
  23.     External;
  24.  
  25. Procedure QueueRead(Request : IOStdReqPtr; Where : String);
  26.     External;
  27.  
  28. Function ConGetChar(consolePort : MsgPortPtr; Request : IOStdReqPtr;
  29.             WhereTo : String) : Char;
  30.     External;
  31.